home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_asm / asmfix4 / write.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-11  |  222 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5.     fprintf( stdout, "Hello, standard out\n" );
  6.     fprintf( stderr, "Hello, standard error\n" );
  7.     fprintf( stdaux, "Hello, standard aux\n" );
  8.     fprintf( stdprn, "Hello, standard prn\n" );
  9. }
  10.